                                                                              
	             *=$1000                                                                  
                     sei                                                                      
                     lda #$50                                                                 
                     sta $0314                                                                
                     lda #$10                                                                 
                     sta $0315                                                                
                     cli                                                                      
                     ever                                                                     
                     jmp ever ;(Can be replaced with rts)                                     
                                                                                              
                     *=$1050                                                                  
                     ldx #$00                                                                 
                     lda #$3b                                                                 
                     start                                                                    
                     cmp $d012                                                                
                     bne start                                                                
                     nop                                                                      
                     nop                                                                      
                     nop                                                                      
                     nop                                                                      
                     nop                                                                      
                     nop                                                                      
                     loop                                                                     
                     ldy timer,x                                                              
                     lda color,x ; (can be replaced with lda $0400,x                          
                     sta $d020 ; so that you can edit the colors direct                       
                     sta $d021 ; on the top of the screen)                                    
                     delay                                                                    
                     dey                                                                      
                     bne delay                                                                
                     inx                                                                      
                     cpx #$18                                                                 
                     bne loop                                                                 
                     jmp $ea31                                                                
                                                                                              
                     *=$1100                                                                  
                     timer                                                                    
                     .byte $08,$08,$08,$08,$08,$08                                            
                     .byte $08,$01                                                            
                     .byte $08,$08,$08,$08,$08,$08                                            
                     .byte $08,$01                                                            
                     .byte $08,$08,$08,$08,$08,$08                                            
                     .byte $08,$01                                                            
                     .byte $08,$08,$08,$08,$08,$08                                            
                     .byte $08,$01                                                            
                                                                                              
                     *=$1200                                                                  
                     color                                                                    
                     .byte $01,$00,$01,$00,$01,$00                                            
                     .byte $01,$00                                                            
                     .byte $01,$00,$01,$00,$01,$00                                            
                     .byte $01,$00                                                            
                     .byte $01,$00,$01,$00,$01,$00                                            
                     .byte $01,$00                                                            
                     .byte $01,$00,$01,$00,$01,$00                                            
                     .byte $01,$00                                                            
